home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Appearance SDK / Appearance Sample Code / Source / BevelDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-27  |  737 b   |  47 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        BevelDialog.h
  3.  
  4.     Contains:    A creamy nougat center.
  5.  
  6.     Version:    Appearance 1.0 SDK
  7.  
  8.     Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Edward Voas
  13.  
  14.         Other Contact:        7 of 9, Borg Collective
  15.  
  16.         Technology:            OS Technologies Group
  17.  
  18.     Writers:
  19.  
  20.         (edv)    Ed Voas
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <1>     9/11/97    edv        First checked in.
  25. */
  26.  
  27. #ifndef _BEVELDIALOG_H
  28. #define _BEVELDIALOG_H
  29.  
  30. #include "BaseDialog.h"
  31.  
  32. class BevelDialog : public BaseDialog
  33. {
  34.     public:
  35.             BevelDialog();
  36.         virtual ~BevelDialog();
  37.     
  38.     protected:
  39.         void        HandleItemHit( SInt16 itemHit );
  40.     
  41.     private:
  42.         void        EnableDisableAll( Boolean enable );
  43.         void         SetControlValues( short value );
  44. };
  45.  
  46. #endif // _BEVELDIALOG_H
  47.